home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual BASIC 5.0 (Ent. Edition) / Vb5ent Extractor.EXE / VB / SAMPLES / ENTRPRIS / APE / AEEXPDTR / CALLBKRF.CLS < prev    next >
Encoding:
Visual Basic class definition  |  1996-11-07  |  1.2 KB  |  27 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4. END
  5. Attribute VB_Name = "CallBackRef"
  6. Attribute VB_GlobalNameSpace = False
  7. Attribute VB_Creatable = False
  8. Attribute VB_PredeclaredId = False
  9. Attribute VB_Exposed = False
  10. Option Explicit
  11. '-------------------------------------------------------------------------
  12. 'Purpose:   This class forms a data structure to store Service request
  13. '           information.  New CallBacksRef objects can be added to a
  14. '           collection to store the data
  15. '-------------------------------------------------------------------------
  16.  
  17. Public ServiceID As Long        'Service Request ID
  18. Public Object As APEInterfaces.Client  'Callback object that will be called
  19. Public SyncObject As EventReturn
  20. Public Result As Variant        'Result Data from accomplished task will
  21.                                 'returned to Callback object
  22. Public Error As String          'Error description that occurred in Worker
  23.                                 'while processing task.
  24. Public UseSyncEvent As Boolean
  25. Public CallAttempts As Long     'The number of failed attempts to call the
  26.                                 'Callback method of the Object property
  27.